879a1a57f9ab182f0bbe91adb33f43f3a7575ccc,uportal-war/src/test/java/org/jasig/portal/groups/GroupsTester.java,GroupsTester,testUpdateMembersVisibility,#,1295
Before Change
msg = "Retrieving ALL members from root group.";
print(msg);
list = new ArrayList();
for( itr=rootGroup.getDescendants().iterator(); itr.hasNext(); )
{ list.add(itr.next()); }
assertEquals(msg, (totNumGroups - 1 + totNumEntities), list.size());
// At this point, the child group members should not yet be aware of their parents.
After Change
msg = "Retrieving ALL members from root group.";
print(msg);
list = new ArrayList(rootGroup.getDescendants());
assertEquals(msg, (totNumGroups - 1 + totNumEntities), list.size());
// At this point, the child group members should not yet be aware of their parents.